Skip to main content

toString

Converts the CDocBuilderValue object to a string.

Please note, that for the .docbuilder file the CDocBuilderValue.toString method is not used.

Syntax

String toString();

Example

Java

CDocBuilder.initialize("");
CDocBuilder builder = new CDocBuilder();
CDocBuilderContext context = builder.getContext();
CDocBuilderValue global = context.getGlobal();
String stringValue = global.toString();
CDocBuilder.dispose();